'Declaration Public MustOverride Sub CopyTo( _
ByVal arrayThe one-dimensional Array that is the destination of the elements copied from collection. The Array must have zero-based indexing.() As T, _
ByVal arrayIndexCopies the elements of the collection to an Array, starting at a particular Array index.As System.Int32 _
)
public abstract void CopyTo(
T[] array,
System.Int32 arrayIndex
)
public: abstract void CopyTo(
T*[]* array,
System.Int32 arrayIndex
)
public:
abstract void CopyTo(
array<T^>^ array,
System.Int32 arrayIndex
)
Parameters
- array
- The one-dimensional Array that is the destination of the elements copied from collection. The Array must have zero-based indexing.
- arrayIndex
- Copies the elements of the collection to an Array, starting at a particular Array index.